home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 47215 / 47215.xpi / chrome / content / lib / dom.js < prev    next >
Text File  |  2009-11-22  |  450b  |  22 lines

  1. (function()
  2. {
  3.     //shortcut for document.getElementById
  4.     this.getBrowserElement = function (anID)
  5.     {
  6.         return document.getElementById(anID);
  7.     }
  8.     //return an element of this extension
  9.     this.getElement = function (anID)
  10.     {
  11.         return this.getBrowserElement('URLtoTabTitle-'+anID);
  12.     }
  13.     //removes an element from the dom
  14.     this.removeElement = function (anElement)
  15.     {
  16.         anElement.parentNode.removeChild(anElement);
  17.     }
  18.  
  19.     return null;
  20.  
  21. }).apply(URLtoTabTitle);
  22.